156d00424082fdc0645e5ef0bef6ee6dea29c71d,Android/LuaViewSDK/src/org/luaj/vm2/compiler/LexState.java,LexState,whilestat,#number#,1829
Before Change
this.checknext(TK_DO);
this.block();
fs.patchlist(fs.jump(), whileinit);
this.check_match(TK_END, TK_WHILE, line);
}
fs.leaveblock();
fs.patchtohere(condexit); /* false conditions finish the loop */
After Change
this.checknext(TK_DO);
this.block();
fs.patchlist(fs.jump(), whileinit);
this.check_match(TK_END, TK_WHILE, line);
fs.leaveblock();
fs.patchtohere(condexit); /* false conditions finish the loop */
}